(0) Obligation:

Runtime Complexity TRS:
The TRS R consists of the following rules:

fstsplit(0, x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0, x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0, m) → true
leq(s(n), 0) → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(pid, nil) → nil
map_f(pid, cons(h, t)) → app(f(pid, h), map_f(pid, t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(two, head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(two, head(in_2)), st_2)), cons(fstsplit(m, app(map_f(two, head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(two, head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(three, head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(three, head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(three, head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Rewrite Strategy: FULL

(1) DecreasingLoopProof (EQUIVALENT transformation)

The following loop(s) give(s) rise to the lower bound Ω(n1):
The rewrite sequence
fstsplit(s(n), cons(h, t)) →+ cons(h, fstsplit(n, t))
gives rise to a decreasing loop by considering the right hand sides subterm at position [1].
The pumping substitution is [n / s(n), t / cons(h, t)].
The result substitution is [ ].

(2) BOUNDS(n^1, INF)

(3) RenamingProof (EQUIVALENT transformation)

Renamed function symbols to avoid clashes with predefined symbol.

(4) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(pid, nil) → nil
map_f(pid, cons(h, t)) → app(f(pid, h), map_f(pid, t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(two, head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(two, head(in_2)), st_2)), cons(fstsplit(m, app(map_f(two, head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(two, head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(three, head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(three, head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(three, head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

S is empty.
Rewrite Strategy: FULL

(5) SlicingProof (LOWER BOUND(ID) transformation)

Sliced the following arguments:
map_f/0
f/0
f/1

(6) Obligation:

Runtime Complexity Relative TRS:
The TRS R consists of the following rules:

fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

S is empty.
Rewrite Strategy: FULL

(7) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)

Infered types.

(8) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

(9) OrderProof (LOWER BOUND(ID) transformation)

Heuristically decided to analyse the following defined symbols:
fstsplit, sndsplit, leq, length, app, map_f, ring

They will be analysed ascendingly in the following order:
fstsplit < ring
sndsplit < ring
leq < ring
length < ring
app < map_f
app < ring
map_f < ring

(10) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
fstsplit, sndsplit, leq, length, app, map_f, ring

They will be analysed ascendingly in the following order:
fstsplit < ring
sndsplit < ring
leq < ring
length < ring
app < map_f
app < ring
map_f < ring

(11) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

Induction Base:
fstsplit(gen_0':s6_0(0), gen_nil:cons:f5_0(0)) →RΩ(1)
nil

Induction Step:
fstsplit(gen_0':s6_0(+(n8_0, 1)), gen_nil:cons:f5_0(+(n8_0, 1))) →RΩ(1)
cons(nil, fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0))) →IH
cons(nil, gen_nil:cons:f5_0(c9_0))

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(12) Complex Obligation (BEST)

(13) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
sndsplit, leq, length, app, map_f, ring

They will be analysed ascendingly in the following order:
sndsplit < ring
leq < ring
length < ring
app < map_f
app < ring
map_f < ring

(14) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)

Induction Base:
sndsplit(gen_0':s6_0(0), gen_nil:cons:f5_0(0)) →RΩ(1)
gen_nil:cons:f5_0(0)

Induction Step:
sndsplit(gen_0':s6_0(+(n662_0, 1)), gen_nil:cons:f5_0(+(n662_0, 1))) →RΩ(1)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) →IH
gen_nil:cons:f5_0(0)

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(15) Complex Obligation (BEST)

(16) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
leq, length, app, map_f, ring

They will be analysed ascendingly in the following order:
leq < ring
length < ring
app < map_f
app < ring
map_f < ring

(17) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)

Induction Base:
leq(gen_0':s6_0(0), gen_0':s6_0(0)) →RΩ(1)
true

Induction Step:
leq(gen_0':s6_0(+(n1387_0, 1)), gen_0':s6_0(+(n1387_0, 1))) →RΩ(1)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) →IH
true

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(18) Complex Obligation (BEST)

(19) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
length, app, map_f, ring

They will be analysed ascendingly in the following order:
length < ring
app < map_f
app < ring
map_f < ring

(20) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)

Induction Base:
length(gen_nil:cons:f5_0(0)) →RΩ(1)
0'

Induction Step:
length(gen_nil:cons:f5_0(+(n1824_0, 1))) →RΩ(1)
s(length(gen_nil:cons:f5_0(n1824_0))) →IH
s(gen_0':s6_0(c1825_0))

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(21) Complex Obligation (BEST)

(22) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
app, map_f, ring

They will be analysed ascendingly in the following order:
app < map_f
app < ring
map_f < ring

(23) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)

Induction Base:
app(gen_nil:cons:f5_0(0), gen_nil:cons:f5_0(b)) →RΩ(1)
gen_nil:cons:f5_0(b)

Induction Step:
app(gen_nil:cons:f5_0(+(n2182_0, 1)), gen_nil:cons:f5_0(b)) →RΩ(1)
cons(nil, app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b))) →IH
cons(nil, gen_nil:cons:f5_0(+(b, c2183_0)))

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(24) Complex Obligation (BEST)

(25) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
map_f, ring

They will be analysed ascendingly in the following order:
map_f < ring

(26) RewriteLemmaProof (LOWER BOUND(ID) transformation)

Proved the following rewrite lemma:
map_f(gen_nil:cons:f5_0(+(1, n3331_0))) → *7_0, rt ∈ Ω(n33310)

Induction Base:
map_f(gen_nil:cons:f5_0(+(1, 0)))

Induction Step:
map_f(gen_nil:cons:f5_0(+(1, +(n3331_0, 1)))) →RΩ(1)
app(f, map_f(gen_nil:cons:f5_0(+(1, n3331_0)))) →IH
app(f, *7_0)

We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).

(27) Complex Obligation (BEST)

(28) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)
map_f(gen_nil:cons:f5_0(+(1, n3331_0))) → *7_0, rt ∈ Ω(n33310)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

The following defined symbols remain to be analysed:
ring

(29) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)

Could not prove a rewrite lemma for the defined symbol ring.

(30) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)
map_f(gen_nil:cons:f5_0(+(1, n3331_0))) → *7_0, rt ∈ Ω(n33310)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(31) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(32) BOUNDS(n^1, INF)

(33) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)
map_f(gen_nil:cons:f5_0(+(1, n3331_0))) → *7_0, rt ∈ Ω(n33310)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(34) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(35) BOUNDS(n^1, INF)

(36) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)
app(gen_nil:cons:f5_0(n2182_0), gen_nil:cons:f5_0(b)) → gen_nil:cons:f5_0(+(n2182_0, b)), rt ∈ Ω(1 + n21820)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(37) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(38) BOUNDS(n^1, INF)

(39) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)
length(gen_nil:cons:f5_0(n1824_0)) → gen_0':s6_0(n1824_0), rt ∈ Ω(1 + n18240)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(40) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(41) BOUNDS(n^1, INF)

(42) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)
leq(gen_0':s6_0(n1387_0), gen_0':s6_0(n1387_0)) → true, rt ∈ Ω(1 + n13870)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(43) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(44) BOUNDS(n^1, INF)

(45) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)
sndsplit(gen_0':s6_0(n662_0), gen_nil:cons:f5_0(n662_0)) → gen_nil:cons:f5_0(0), rt ∈ Ω(1 + n6620)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(46) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(47) BOUNDS(n^1, INF)

(48) Obligation:

TRS:
Rules:
fstsplit(0', x) → nil
fstsplit(s(n), nil) → nil
fstsplit(s(n), cons(h, t)) → cons(h, fstsplit(n, t))
sndsplit(0', x) → x
sndsplit(s(n), nil) → nil
sndsplit(s(n), cons(h, t)) → sndsplit(n, t)
empty(nil) → true
empty(cons(h, t)) → false
leq(0', m) → true
leq(s(n), 0') → false
leq(s(n), s(m)) → leq(n, m)
length(nil) → 0'
length(cons(h, t)) → s(length(t))
app(nil, x) → x
app(cons(h, t), x) → cons(h, app(t, x))
map_f(nil) → nil
map_f(cons(h, t)) → app(f, map_f(t))
head(cons(h, t)) → h
tail(cons(h, t)) → t
ring(st_1, in_2, st_2, in_3, st_3, m) → if_1(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_1)))
if_1(st_1, in_2, st_2, in_3, st_3, m, false) → ring(sndsplit(m, st_1), cons(fstsplit(m, st_1), in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_2(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_2)))
if_2(st_1, in_2, st_2, in_3, st_3, m, true) → if_3(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_2)))
if_3(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, sndsplit(m, st_2), cons(fstsplit(m, st_2), in_3), st_3, m)
if_2(st_1, in_2, st_2, in_3, st_3, m, false) → if_4(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_2)), st_2))))
if_4(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, tail(in_2), sndsplit(m, app(map_f(head(in_2)), st_2)), cons(fstsplit(m, app(map_f(head(in_2)), st_2)), in_3), st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_5(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_2))))
if_5(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, tail(in_2), st_2, in_3, st_3, m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_6(st_1, in_2, st_2, in_3, st_3, m, leq(m, length(st_3)))
if_6(st_1, in_2, st_2, in_3, st_3, m, true) → if_7(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, st_3)))
if_7(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, in_3, sndsplit(m, st_3), m)
if_6(st_1, in_2, st_2, in_3, st_3, m, false) → if_8(st_1, in_2, st_2, in_3, st_3, m, empty(fstsplit(m, app(map_f(head(in_3)), st_3))))
if_8(st_1, in_2, st_2, in_3, st_3, m, false) → ring(st_1, in_2, st_2, tail(in_3), sndsplit(m, app(map_f(head(in_3)), st_3)), m)
ring(st_1, in_2, st_2, in_3, st_3, m) → if_9(st_1, in_2, st_2, in_3, st_3, m, empty(map_f(head(in_3))))
if_9(st_1, in_2, st_2, in_3, st_3, m, true) → ring(st_1, in_2, st_2, tail(in_3), st_3, m)

Types:
fstsplit :: 0':s → nil:cons:f → nil:cons:f
0' :: 0':s
nil :: nil:cons:f
s :: 0':s → 0':s
cons :: nil:cons:f → nil:cons:f → nil:cons:f
sndsplit :: 0':s → nil:cons:f → nil:cons:f
empty :: nil:cons:f → true:false
true :: true:false
false :: true:false
leq :: 0':s → 0':s → true:false
length :: nil:cons:f → 0':s
app :: nil:cons:f → nil:cons:f → nil:cons:f
map_f :: nil:cons:f → nil:cons:f
f :: nil:cons:f
head :: nil:cons:f → nil:cons:f
tail :: nil:cons:f → nil:cons:f
ring :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_1 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_2 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_3 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_4 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_5 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_6 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_7 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_8 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
if_9 :: nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → nil:cons:f → 0':s → true:false → ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
hole_nil:cons:f1_0 :: nil:cons:f
hole_0':s2_0 :: 0':s
hole_true:false3_0 :: true:false
hole_ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_94_0 :: ring:if_1:if_2:if_3:if_4:if_5:if_6:if_7:if_8:if_9
gen_nil:cons:f5_0 :: Nat → nil:cons:f
gen_0':s6_0 :: Nat → 0':s

Lemmas:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

Generator Equations:
gen_nil:cons:f5_0(0) ⇔ nil
gen_nil:cons:f5_0(+(x, 1)) ⇔ cons(nil, gen_nil:cons:f5_0(x))
gen_0':s6_0(0) ⇔ 0'
gen_0':s6_0(+(x, 1)) ⇔ s(gen_0':s6_0(x))

No more defined symbols left to analyse.

(49) LowerBoundsProof (EQUIVALENT transformation)

The lowerbound Ω(n1) was proven with the following lemma:
fstsplit(gen_0':s6_0(n8_0), gen_nil:cons:f5_0(n8_0)) → gen_nil:cons:f5_0(n8_0), rt ∈ Ω(1 + n80)

(50) BOUNDS(n^1, INF)